
  
  /* .wrapper-search {
    width: 100%;
    max-width: 31.25rem;
    margin: 6rem auto;
  } */
  
  .label-search {
    font-size: .625rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: +1.3px;
    margin-bottom: 1rem;
  }
  
  .searchBar-search {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 0.2rem;
  }
  
  #searchQueryInput {
    width: 100%;
    height: 2.5rem;
    background: #ffffff;
    
    border: 2px solid #f3efef;
    /* border-color: black; */
    outline: none;
    border-radius: 1.625rem;
    padding: 0 3.5rem 0 1.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  #searchQuerySubmit {
    width: 5rem;
    height: 2.5rem;
    margin-left: -3.5rem;
    margin-bottom: 1rem;
    background: #53ba63;
    color: white;
    border-radius: 1.625rem;
    border: none;
    outline: none;
  }
  
  #searchQuerySubmit:hover {
    cursor: pointer;
  }

 .badge-closed {

  color: #fff;
  background-color: #FF4747;
  border: none;
}

 .badge-new_enquiry {
  color: #fff;
  background-color: #57B657;
  border: none;
}

.badge-processing {
  color: #fff;
  background-color: #FFC100;
  border: none;
}

.badge-won {
  color: #fff;
  background-color: #29f072;
  border: none;
}

.badge-hot {
  color: #fff;
  background-color: #22c7f0;
  border: none;
}

.badge-warm {
  color: #fff;
  background-color: #f0a422;
  border: none;
}
.badge-lost {
  color: #fff;
  background-color: #ed4550;
  border: none;
}


.search-tab .col-2, .search-tab .col-1 {
      padding-right: 0;
    }

    .dropdown {
      position: relative;
      /* Reference point for absolute positioning */
      /* border: 1px solid #c1c2c5; */
      border-radius: 12px;
      display: inline-block;
      background-color: white;

    }

    .trigger {
      cursor: pointer;
      font-weight: 600;
      display: block;
      padding: 1rem;
      background-color: white;
      border-radius: inherit;
      border: 1px solid #c1c2c5;
      text-align: center;
    }

    .list-container {
      position: absolute;
      /* Positioned below the trigger */
      top: 100%;
      right: 0;
      z-index: 1000;
      background-color: white;
      border: 1px solid #c1c2c5;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      max-height: 20rem;
      /* Same max-height as .list */
      /* width: 100%; */
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 300ms ease-in-out;
      overflow: hidden;
      /* Prevent content overflow */
      max-width: 298px;
      min-width: 298px;
    }

    .dropdown label {
      margin-bottom: 0;
    }

    .dropdown input:checked~.list-container {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .list {
      max-height: 20rem;
      /* Match the height of the container */
      overflow-y: auto;
      /* Add a vertical scrollbar */
      padding: 0 1rem;
      margin: 0;
      list-style: none;
    }

    .listitem {
      padding: 1rem;
      border-bottom: 1px solid #f0f0f0;
    }

    .listitem:last-child {
      border-bottom: none;
    }

    .article {
      text-align: justify;
    }

    /* Scrollbar Styling */
    .list::-webkit-scrollbar {
      width: 0.3rem;
    }

    .list::-webkit-scrollbar-thumb {
      background: #c1c2c5;
      border-radius: 0.3rem;
    }

    #dropdown-arrow {
      transition: transform 300ms ease-in-out;
    }


    .dropdown input:checked~.trigger #dropdown-arrow {
      transform: rotate(90deg);
      /* Rotate the arrow when the dropdown is opened */
    }

        /* Style for loading screen overlay */
    .loading-screen {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    /* Style for spinner */
    .spinner {
        border: 4px solid #f3f3f3;
        border-top: 4px solid #3498db;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        animation: spin 2s linear infinite;
    }

    /* Spinner Animation */
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .overlay-container {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 15px 20px;
        border-radius: 8px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .overlay-text {
        color: #01527d;
        font-size: 17px;
        font-weight: bold;
        margin-bottom: 10px;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .support-text {
        font-size: 15px;
        color: #333;
    }

